950cf5557e549566419f3f094143e3f4e9f73230,Frameworks/EOAdaptors/JavaMemoryAdaptor/Sources/er/memoryadaptor/EREntityStore.java,EREntityStore,rowFromStoredValues,#NSMutableDictionary#EOEntity#,227
Before Change
protected NSMutableDictionary<String, Object> rowFromStoredValues(NSMutableDictionary<String, Object> rawRow, EOEntity entity) {
NSMutableDictionary<String, Object> row = new NSMutableDictionary<String, Object>(rawRow.count());
for (EOAttribute attribute : entity.attributesToFetch()) {
Object value = rawRow.objectForKey(attribute.columnName());
if (attribute.isDerived()) {
if (!attribute.isFlattened()) {
After Change
protected NSMutableDictionary<String, Object> rowFromStoredValues(NSMutableDictionary<String, Object> rawRow, EOEntity entity) {
NSMutableDictionary<String, Object> row = new NSMutableDictionary<String, Object>(rawRow.count());
for (EOAttribute attribute : (NSArray<EOAttribute>)entity.attributesToFetch()) {
Object value = rawRow.objectForKey(attribute.columnName());
if (attribute.isDerived()) {
if (!attribute.isFlattened() && attribute.definition().contains("||")) {